Distill for R Markdown

Scientific and technical writing, native to the web

Plots

plot_ex <- ggplot(mtcars, aes(x = disp, y = mpg, color = factor(cyl))) +
  geom_point(size = 3)
plot_ex

plotly::ggplotly(plot_ex)

DT Tables

DT::datatable(mtcars)